home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Codigos_Prontos / CSS / Texto / Rounded corners with images.txt < prev    next >
Text File  |  2008-08-19  |  636b  |  41 lines

  1.  
  2. <div class="roundcont">
  3. <div class="roundtop">
  4. <img src="tl.gif" alt=""
  5. width="15" height="15" class="corner"
  6. style="display: none" />
  7. </div>
  8.  
  9. CONTENT
  10. <div class="roundbottom">
  11. <img src="bl.gif" alt=""
  12. width="15" height="15" class="corner"
  13. style="display: none" />
  14. </div>
  15. </div>
  16.  
  17. .roundcont {
  18. width: 250px;
  19. background-color: #f90;
  20. color: #fff;
  21. }
  22.  
  23. .roundcont p {
  24. margin: 0 10px;
  25. }
  26.  
  27. .roundtop {
  28. background: url(tr.gif) no-repeat top right;
  29. }
  30.  
  31. .roundbottom {
  32. background: url(br.gif) no-repeat top right;
  33. }
  34.  
  35. img.corner {
  36. width: 15px;
  37. height: 15px;
  38. border: none;
  39. display: block !important;
  40. }
  41.